From 8b0a3e061eb38ee0afcb0a9366a957f133ba86af Mon Sep 17 00:00:00 2001 From: Axel Viala Date: Fri, 25 Mar 2022 15:59:28 +0100 Subject: [PATCH] -Wold-style-declaration --- babl/babl-fish-path.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/babl/babl-fish-path.c b/babl/babl-fish-path.c index c51d461..d06129f 100644 --- a/babl/babl-fish-path.c +++ b/babl/babl-fish-path.c @@ -1365,7 +1365,7 @@ babl_process_rows (const Babl *fish, #include #define BABL_ALIGN 16 -static void inline *align_16 (unsigned char *ret) +static inline void *align_16 (unsigned char *ret) { int offset = BABL_ALIGN - ((uintptr_t) ret) % BABL_ALIGN; ret = ret + offset; -- 2.30.2